-
Notifications
You must be signed in to change notification settings - Fork 13.9k
Bootstrap update #148226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bootstrap update #148226
Conversation
(cherry picked from commit 8130721)
|
The Miri subtree was changed cc @rust-lang/miri |
|
rustbot has assigned @Mark-Simulacrum. Use |
|
@bors r+ rollup Nice to see the small amount of cfgs! |
Rollup of 5 pull requests Successful merges: - #144444 (Contract variable declarations) - #147281 (Make diagnostics clearer for binop-related errors in foreign crates) - #148131 (Skip parameter attribute deduction for MIR with `spread_arg`) - #148224 (bootstrap: `ensure(doc::Std)` no longer opens a browser) - #148226 (Bootstrap update) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of #148226 - cuviper:bootstrap-update, r=Mark-Simulacrum Bootstrap update - Update CURRENT_RUSTC_VERSION post-bump - Bump stage0 to 1.92.0-beta.1 - Update `#[cfg(bootstrap)]`
Rollup of 5 pull requests Successful merges: - rust-lang/rust#144444 (Contract variable declarations) - rust-lang/rust#147281 (Make diagnostics clearer for binop-related errors in foreign crates) - rust-lang/rust#148131 (Skip parameter attribute deduction for MIR with `spread_arg`) - rust-lang/rust#148224 (bootstrap: `ensure(doc::Std)` no longer opens a browser) - rust-lang/rust#148226 (Bootstrap update) r? `@ghost` `@rustbot` modify labels: rollup
| #![feature(arbitrary_self_types)] | ||
| #![feature(iter_advance_by)] | ||
| #![cfg_attr(not(bootstrap), feature(duration_from_nanos_u128))] | ||
| #![feature(duration_from_nanos_u128)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW there is a corresponding cfg_select! on bootstrap in the code that matches this... I guess the pattern you are grepping for involves cfg.*bootstrap and so the cfg_select! did not show up?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's just a grep pattern: https://forge.rust-lang.org/release/process.html#default-branch-bootstrap-update-tuesday
Maybe adding bootstrap => and not(bootstrap) => is sufficiently accurate for these cfg_select! cases? That does find your instance right now, and nothing else.
#[cfg(bootstrap)]